home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / textual / tex / files / !tex / TeXsource / commontex / h / expand < prev    next >
Encoding:
Text File  |  1988-04-08  |  798 b   |  35 lines

  1. /*
  2.  *    Copyright 1986, 1987 Pat Joseph Monardo. All rights reserved.
  3.  *    Copying of this file is granted according to the provisions 
  4.  *    specified in the file COPYING which must accompany this file.
  5.  */
  6.  
  7.  
  8. /*
  9.  *        expand.h
  10.  */
  11.  
  12. int        get_x_token();
  13. int        expand();
  14. int        insert_relax();
  15.  
  16. #define    TOP_MARK_CODE                0
  17. #define    FIRST_MARK_CODE                1
  18. #define    BOT_MARK_CODE                2
  19. #define    SPLIT_FIRST_MARK_CODE        3
  20. #define    SPLIT_BOT_MARK_CODE            4
  21.  
  22. #define    top_mark                    cur_mark[TOP_MARK_CODE]
  23. #define    first_mark                    cur_mark[FIRST_MARK_CODE]
  24. #define    bot_mark                    cur_mark[BOT_MARK_CODE]
  25. #define    split_first_mark            cur_mark[SPLIT_FIRST_MARK_CODE]
  26. #define    split_bot_mark                cur_mark[SPLIT_BOT_MARK_CODE]
  27.  
  28. global    ptr    cur_mark[];
  29.  
  30. global    int    long_state;
  31. global    ptr    pstack[];
  32.  
  33. int        macro_call();
  34. int        x_token();
  35.